home *** CD-ROM | disk | FTP | other *** search
/ kermit.columbia.edu / kermit.columbia.edu.tar / kermit.columbia.edu / newsgroups / misc.19980424-19980901 / 000424_news@newsmaster….columbia.edu _Mon Aug 31 15:35:05 1998.msg < prev    next >
Internet Message Format  |  1998-08-31  |  3KB

  1. Return-Path: <news@newsmaster.cc.columbia.edu>
  2. Received: from newsmaster.cc.columbia.edu (newsmaster.cc.columbia.edu [128.59.35.30])
  3.     by watsun.cc.columbia.edu (8.8.5/8.8.5) with ESMTP id PAA09682
  4.     for <kermit.misc@watsun.cc.columbia.edu>; Mon, 31 Aug 1998 15:35:05 -0400 (EDT)
  5. Received: (from news@localhost)
  6.     by newsmaster.cc.columbia.edu (8.8.5/8.8.5) id PAA05291
  7.     for kermit.misc@watsun; Mon, 31 Aug 1998 15:35:05 -0400 (EDT)
  8. Path: news.columbia.edu!watsun.cc.columbia.edu!fdc
  9. From: fdc@watsun.cc.columbia.edu (Frank da Cruz)
  10. Newsgroups: comp.protocols.kermit.misc
  11. Subject: Re: file transfer via null modem
  12. Date: 31 Aug 1998 19:35:03 GMT
  13. Organization: Columbia University
  14. Lines: 41
  15. Message-ID: <6sett7$r0m$1@apakabar.cc.columbia.edu>
  16. References: <35EAE447.DECCA625@mail.trincoll.edu>
  17. NNTP-Posting-Host: watsun.cc.columbia.edu
  18. Xref: news.columbia.edu comp.protocols.kermit.misc:9155
  19.  
  20. In article <35EAE447.DECCA625@mail.trincoll.edu>,
  21. Noyekh Miller  <nmiller@mail.trincoll.edu> wrote:
  22. : I'm humiliated to write this because I was transferring files using
  23. : Kermit back in the mid-80's.  But K95 is a lot fancier and my brain
  24. : cells have dried up.  Anyway, here's my setup:
  25. : desktop running NT, null modem cable in com2
  26. : laptop running NT, null modem cable in com1
  27. : both machines have K95 installed
  28. : I've tried (from the K-95> prompt on my desktop ) to "set line 2") and
  29. : then to set speed.  But when I type "dir" I get the contents of my
  30. : desktop directory.   What I hoped I'd get is a prompt asking me to log
  31. : into the laptop.
  32. You probably have NT confused with some other operating system like UNIX,
  33. that lets people log in from serial ports :-)
  34.  
  35. : Anyway, you get the picture.  Any advice?  Thanks in advance.
  36. You have to make the two Kermits talk directly to each other.  It's easy.
  37. Tell each Kermit to:
  38.  
  39.   set port 1       ; (or 2, as appropriate)
  40.   set speed 57600  ; (or other, but both the same)
  41.   set flow rts/cts ; (assuming you've wired your cable correctly)
  42.   connect  
  43.  
  44. at this point, whatever you type on one keyboard should show up on the
  45. other's screen.  If not, you've probably got cable problems (see the Data
  46. Communications appendix in your "Using C-Kermit" book).
  47.  
  48. Now Alt-x on each.  Put one of them in server mode by typing "server"
  49. at the K-95> prompt.  Then type all further commands at the other one's
  50. K-95> prompt: remote directory, remote cd, remote pwd, get, send, finish.
  51. See the Client/Server chapter of the book.
  52.  
  53. This is pretty much the same as you would have done with MS-DOS Kermit back
  54. in the good old simple days.
  55.  
  56. - Frank